Q&A [3]:變數宣告


Posted by clins210 on 2020-11-23

In programming language C, we have different type of variable, such as

  • private
  • public

The "private" means you can use this kind of variables in the specific blocks. Once you move out the block, you can't use this in your code.

put coding here

Otherwise, the "public" type variable means all of the people who knows this code name can call it to do something.

class Count{ 
public: 
    /*numberPub can be used anywhere in the class Count */ 
    int numberPub; 

    /*This will return our private variable, numberPri. This way, we can return the variable, but we do not have to worry about access, such as a user modifying the value when they shouldn't. */ 
    int getNumberPri(); 

private: 
    /*numberPri cannot be used anywhere in the class Count. If we want to use numberPri in Count, we must use getNumberPri() to access it*/ 
    int numberPri; 
};

Citation:

  1. https://www.quora.com/What-is-private-and-public-in-C

#Variables #C #private #public







Related Posts

深入探討 JavaScript 中的參數傳遞:call by value 還是 reference?

深入探討 JavaScript 中的參數傳遞:call by value 還是 reference?

[ Day 02 ] 用 Puppeteer 來做自動化機器人吧 (一) : 安裝篇

[ Day 02 ] 用 Puppeteer 來做自動化機器人吧 (一) : 安裝篇

Python Table Manners - pre-commit: git commit 前做完檢查

Python Table Manners - pre-commit: git commit 前做完檢查


Comments